//Complete the folling program so that the //factorial and power functions work. //Do not request input from the user. To get different //results simply cange the values of the parameters passed //to the functions from main. //These functions only need to work with integer variables #include #include using namespace std; //add your two functions here //X! flowchart Example //https://www.harding.edu/dsteil/170/overflow/xFactorial.png //X^y flowchart Example //https://www.harding.edu/dsteil/170/overflow/x^y.png //You should NOT change main other than trying //different paramters to the two functions void main() { displayFactorial(6); displayPower(5, 6); }